projects
/
gtk4.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
edd888f
)
GtkScale: Always chain up in notify
author
Matthias Clasen
<mclasen@redhat.com>
Mon, 16 Jan 2012 23:05:44 +0000
(18:05 -0500)
committer
Matthias Clasen
<mclasen@redhat.com>
Mon, 16 Jan 2012 23:05:44 +0000
(18:05 -0500)
Pointed out by Stefan Sauer.
gtk/gtkscale.c
patch
|
blob
|
history
diff --git
a/gtk/gtkscale.c
b/gtk/gtkscale.c
index fe9f8dfd4e0948560a5e7fb9bcffb112978fba09..70522a6067178e51f41834a6d8a3e0b38920609c 100644
(file)
--- a/
gtk/gtkscale.c
+++ b/
gtk/gtkscale.c
@@
-200,7
+200,8
@@
gtk_scale_notify (GObject *object,
compare_marks,
GINT_TO_POINTER (gtk_range_get_inverted (GTK_RANGE (scale))));
}
- else if (G_OBJECT_CLASS (gtk_scale_parent_class)->notify)
+
+ if (G_OBJECT_CLASS (gtk_scale_parent_class)->notify)
G_OBJECT_CLASS (gtk_scale_parent_class)->notify (object, pspec);
}